home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Magazin/MacEasy 13
/
Mac Magazin and MacEasy Magazine CD - Issue 13.iso
/
Wissenschaft & Technik
/
ResAnomaly dist
/
SpinCursorsLib
/
SpinCursorLib.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-04
|
482b
|
31 lines
#pragma once
/*
File: SpinCursorLib.h
Contains: Cursor spinning routines.
Copyright: ©1995 Chris K. Thomas. All Rights Reserved.
Version: 1.0
History: ckt August 2, 1995 created.
*/
#include <LDynamicArray.h>
const short kMinSpinTicks = 5;
class CursorSet
{
LDynamicArray mYCursors;
long mLastTicks;
long mCursorIterator;
CursHandle mCurrentCursor;
public:
CursorSet(const short inStartID, const short inNumCursors);
~CursorSet();
void Spin();
};